home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / symbol_function < prev    next >
Text File  |  2001-04-06  |  828b  |  25 lines

  1. SYNOPSIS
  2.         closure symbol_function(symbol arg)
  3.         closure symbol_function(string arg)
  4.         closure symbol_function(string arg, object|string ob)
  5.  
  6. DESCRIPTION
  7.         Constructs a lfun closure, efun closure or operator closure
  8.         from the first arg (string or symbol). For lfuns, the second
  9.         arg is the object that the lfun belongs to, specified by
  10.         the object itself or by its name (the object will be loaded
  11.         in the second case)
  12.  
  13.         Private lfuns can never be accessed this way, static and
  14.         protected lfuns only if <ob> is the current object.
  15.  
  16. EXAMPLES
  17.         symbol_function("efun::users")                -> #'users
  18.         symbol_function("QueryProp", other_obj)        -> other_obj->QueryProp()
  19.  
  20. HISTORY
  21.         Introduced in 3.2@70
  22.  
  23. SEE ALSO
  24.         lambda(E), quote(E)
  25.